home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gui / GUICreator10.lha / GUICreator1.0 / Install < prev    next >
Text File  |  1995-06-20  |  1KB  |  42 lines

  1. ;  *** GUICreator installation scipt ***
  2.  
  3. (set #install-msg (cat  "\n\nGUICreator installation script.\n"
  4.                         "This script installs GUICreator on your Amiga.\n\n"
  5.                         "Read the documentation for\n"
  6.                         "more information on the distribution\n"
  7.                         "and commercial usage of GUICreator.\n\n"
  8.                         "GUICreator © 1995 Markus Hillenbrand\n"
  9.                         "All rights reserved.")
  10. )
  11.  
  12. (set #bad-kick          "You must be using Kickstart 3.0 to use this program!")
  13.  
  14. (message #install-msg)
  15.  
  16. (welcome "Welcome to the GUICreator installation!")
  17.  
  18. (if (< (/ (getversion) 65536) 39)
  19.    (
  20.    (abort #bad-kick)
  21.    )
  22. )
  23.  
  24. (set cputype (+(database "CPU")))
  25.  
  26. (set mydest (askdir (prompt "Where shall I install the program?\n(A drawer will be created)")
  27.                     (help @askdir-help)
  28.                     (default "Work:")
  29.                     (disk)
  30.           )
  31. )
  32.  
  33. (message "\nUnpacking data to " mydest)
  34.  
  35. (makeassign "GUIC" (cat "" mydest))
  36.  
  37. (RUN "LHA x GUIC.lha GUIC:")
  38.  
  39. (makeassign "GUIC")
  40.  
  41. (message "If you already have a KEYFILE for GuiCreator,\njust put it into the program´s directory!")
  42.